home *** CD-ROM | disk | FTP | other *** search
- # Miro - an RSS based video player application
- # Copyright (C) 2005-2007 Participatory Culture Foundation
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
- # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
- import app
- import item
- import folder
- import feed
- import guide
- import tabs
-
- def itemsByFeed(x):
- # This specifically sorts subitems by their parent's feed.
- return x.getFeed().getID()
-
- def itemsByChannelFolder(x):
- return x.getFeed().getFolder()
-
- def itemsByParent(x):
- return x.parent_id
-
- def feedsByURL(x):
- return x.getOriginalURL()
-
- def guidesByURL(x):
- return x.getURL()
-
- def downloadsByDLID(x):
- return str(x.dlid)
-
- def downloadsByURL(x):
- return x.origURL.encode('ascii', 'replace')
-
- # Returns the class of the object, aggregating all Item subtypes under Item
- def objectsByClass(x):
- if isinstance(x,item.Item):
- return item.Item
- else:
- return x.__class__
-
- def itemsByState(x):
- return x.getState()
-
- def itemsByChannelCategory(x):
- return x.getChannelCategory()
-
- def downloadsByCategory(x):
- """Splits downloading items into 3 categories:
- normal -- not pending or external
- pending -- pending manual downloads
- external -- external torrents
- """
- if x.getFeed().url == 'dtv:manualFeed':
- return 'external'
- elif x.isPendingManualDownload():
- return 'pending'
- else:
- return 'normal'
-
- def playlistsByItemID(playlist):
- return playlist.item_ids
-
- def playlistsByItemAndFolderID(playlist):
- return [(id, playlist.folder_id) for id in playlist.item_ids]
-
- def tabType(tab):
- return tab.type
-
- def tabOrderType(tabOrder):
- return tabOrder.type
-
- def byFolder(obj):
- return obj.getFolder()
-
- def foldersByTitle(obj):
- return obj.title